home *** CD-ROM | disk | FTP | other *** search
- /*
- * DO NOT EDIT. THIS FILE IS GENERATED FROM nsITreeView.idl
- */
-
- #ifndef __gen_nsITreeView_h__
- #define __gen_nsITreeView_h__
-
-
- #ifndef __gen_nsITreeBoxObject_h__
- #include "nsITreeBoxObject.h"
- #endif
-
- #ifndef __gen_nsISupportsArray_h__
- #include "nsISupportsArray.h"
- #endif
-
- #ifndef __gen_domstubs_h__
- #include "domstubs.h"
- #endif
-
- /* For IDL files that don't want to include root IDL files. */
- #ifndef NS_NO_VTABLE
- #define NS_NO_VTABLE
- #endif
- class nsITreeSelection; /* forward declaration */
-
- class nsITreeColumn; /* forward declaration */
-
-
- /* starting interface: nsITreeView */
- #define NS_ITREEVIEW_IID_STR "22f034b7-a879-43ad-baee-ba6fd4d466ce"
-
- #define NS_ITREEVIEW_IID \
- {0x22f034b7, 0xa879, 0x43ad, \
- { 0xba, 0xee, 0xba, 0x6f, 0xd4, 0xd4, 0x66, 0xce }}
-
- class NS_NO_VTABLE nsITreeView : public nsISupports {
- public:
-
- NS_DEFINE_STATIC_IID_ACCESSOR(NS_ITREEVIEW_IID)
-
- /**
- * The total number of rows in the tree (including the offscreen rows).
- */
- /* readonly attribute long rowCount; */
- NS_IMETHOD GetRowCount(PRInt32 *aRowCount) = 0;
-
- /**
- * The selection for this view.
- */
- /* attribute nsITreeSelection selection; */
- NS_IMETHOD GetSelection(nsITreeSelection * *aSelection) = 0;
- NS_IMETHOD SetSelection(nsITreeSelection * aSelection) = 0;
-
- /**
- * An atomized list of properties for a given row. Each property, x, that
- * the view gives back will cause the pseudoclass :moz-tree-row-x
- * to be matched on the pseudoelement ::moz-tree-row.
- */
- /* void getRowProperties (in long index, in nsISupportsArray properties); */
- NS_IMETHOD GetRowProperties(PRInt32 index, nsISupportsArray *properties) = 0;
-
- /**
- * An atomized list of properties for a given cell. Each property, x, that
- * the view gives back will cause the pseudoclass :moz-tree-cell-x
- * to be matched on the ::moz-tree-cell pseudoelement.
- */
- /* void getCellProperties (in long row, in nsITreeColumn col, in nsISupportsArray properties); */
- NS_IMETHOD GetCellProperties(PRInt32 row, nsITreeColumn *col, nsISupportsArray *properties) = 0;
-
- /**
- * Called to get properties to paint a column background. For shading the sort
- * column, etc.
- */
- /* void getColumnProperties (in nsITreeColumn col, in nsISupportsArray properties); */
- NS_IMETHOD GetColumnProperties(nsITreeColumn *col, nsISupportsArray *properties) = 0;
-
- /**
- * Methods that can be used to test whether or not a twisty should be drawn,
- * and if so, whether an open or closed twisty should be used.
- */
- /* boolean isContainer (in long index); */
- NS_IMETHOD IsContainer(PRInt32 index, PRBool *_retval) = 0;
-
- /* boolean isContainerOpen (in long index); */
- NS_IMETHOD IsContainerOpen(PRInt32 index, PRBool *_retval) = 0;
-
- /* boolean isContainerEmpty (in long index); */
- NS_IMETHOD IsContainerEmpty(PRInt32 index, PRBool *_retval) = 0;
-
- /**
- * isSeparator is used to determine if the row at index is a separator.
- * A value of true will result in the tree drawing a horizontal separator.
- * The tree uses the ::moz-tree-separator pseudoclass to draw the separator.
- */
- /* boolean isSeparator (in long index); */
- NS_IMETHOD IsSeparator(PRInt32 index, PRBool *_retval) = 0;
-
- /**
- * Specifies if there is currently a sort on any column. Used mostly by dragdrop
- * to affect drop feedback.
- */
- /* boolean isSorted (); */
- NS_IMETHOD IsSorted(PRBool *_retval) = 0;
-
- enum { DROP_BEFORE = -1 };
-
- enum { DROP_ON = 0 };
-
- enum { DROP_AFTER = 1 };
-
- /**
- * Methods used by the drag feedback code to determine if a drag is allowable at
- * the current location. To get the behavior where drops are only allowed on
- * items, such as the mailNews folder pane, always return false when
- * the orientation is not DROP_ON.
- */
- /* boolean canDrop (in long index, in long orientation); */
- NS_IMETHOD CanDrop(PRInt32 index, PRInt32 orientation, PRBool *_retval) = 0;
-
- /**
- * Called when the user drops something on this view. The |orientation| param
- * specifies before/on/after the given |row|.
- */
- /* void drop (in long row, in long orientation); */
- NS_IMETHOD Drop(PRInt32 row, PRInt32 orientation) = 0;
-
- /**
- * Methods used by the tree to draw thread lines in the tree.
- * getParentIndex is used to obtain the index of a parent row.
- * If there is no parent row, getParentIndex returns -1.
- */
- /* long getParentIndex (in long rowIndex); */
- NS_IMETHOD GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval) = 0;
-
- /**
- * hasNextSibling is used to determine if the row at rowIndex has a nextSibling
- * that occurs *after* the index specified by afterIndex. Code that is forced
- * to march down the view looking at levels can optimize the march by starting
- * at afterIndex+1.
- */
- /* boolean hasNextSibling (in long rowIndex, in long afterIndex); */
- NS_IMETHOD HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval) = 0;
-
- /**
- * The level is an integer value that represents
- * the level of indentation. It is multiplied by the width specified in the
- * :moz-tree-indentation pseudoelement to compute the exact indendation.
- */
- /* long getLevel (in long index); */
- NS_IMETHOD GetLevel(PRInt32 index, PRInt32 *_retval) = 0;
-
- /**
- * The image path for a given cell. For defining an icon for a cell.
- * If the empty string is returned, the :moz-tree-image pseudoelement
- * will be used.
- */
- /* AString getImageSrc (in long row, in nsITreeColumn col); */
- NS_IMETHOD GetImageSrc(PRInt32 row, nsITreeColumn *col, nsAString & _retval) = 0;
-
- /**
- * The progress mode for a given cell. This method is only called for
- * columns of type |progressmeter|.
- */
- enum { PROGRESS_NORMAL = 1 };
-
- enum { PROGRESS_UNDETERMINED = 2 };
-
- enum { PROGRESS_NONE = 3 };
-
- /* long getProgressMode (in long row, in nsITreeColumn col); */
- NS_IMETHOD GetProgressMode(PRInt32 row, nsITreeColumn *col, PRInt32 *_retval) = 0;
-
- /**
- * The value for a given cell. This method is only called for columns
- * of type other than |text|.
- */
- /* AString getCellValue (in long row, in nsITreeColumn col); */
- NS_IMETHOD GetCellValue(PRInt32 row, nsITreeColumn *col, nsAString & _retval) = 0;
-
- /**
- * The text for a given cell. If a column consists only of an image, then
- * the empty string is returned.
- */
- /* AString getCellText (in long row, in nsITreeColumn col); */
- NS_IMETHOD GetCellText(PRInt32 row, nsITreeColumn *col, nsAString & _retval) = 0;
-
- /**
- * Called during initialization to link the view to the front end box object.
- */
- /* void setTree (in nsITreeBoxObject tree); */
- NS_IMETHOD SetTree(nsITreeBoxObject *tree) = 0;
-
- /**
- * Called on the view when an item is opened or closed.
- */
- /* void toggleOpenState (in long index); */
- NS_IMETHOD ToggleOpenState(PRInt32 index) = 0;
-
- /**
- * Called on the view when a header is clicked.
- */
- /* void cycleHeader (in nsITreeColumn col); */
- NS_IMETHOD CycleHeader(nsITreeColumn *col) = 0;
-
- /**
- * Should be called from a XUL onselect handler whenever the selection changes.
- */
- /* void selectionChanged (); */
- NS_IMETHOD SelectionChanged(void) = 0;
-
- /**
- * Called on the view when a cell in a non-selectable cycling column (e.g., unread/flag/etc.) is clicked.
- */
- /* void cycleCell (in long row, in nsITreeColumn col); */
- NS_IMETHOD CycleCell(PRInt32 row, nsITreeColumn *col) = 0;
-
- /**
- * isEditable is called to ask the view if the cell contents are editable.
- * A value of true will result in the tree popping up a text field when
- * the user tries to inline edit the cell.
- */
- /* boolean isEditable (in long row, in nsITreeColumn col); */
- NS_IMETHOD IsEditable(PRInt32 row, nsITreeColumn *col, PRBool *_retval) = 0;
-
- /**
- * setCellValue is called when the value of the cell has been set by the user.
- * This method is only called for columns of type other than |text|.
- */
- /* void setCellValue (in long row, in nsITreeColumn col, in AString value); */
- NS_IMETHOD SetCellValue(PRInt32 row, nsITreeColumn *col, const nsAString & value) = 0;
-
- /**
- * setCellText is called when the contents of the cell have been edited by the user.
- */
- /* void setCellText (in long row, in nsITreeColumn col, in AString value); */
- NS_IMETHOD SetCellText(PRInt32 row, nsITreeColumn *col, const nsAString & value) = 0;
-
- /**
- * A command API that can be used to invoke commands on the selection. The tree
- * will automatically invoke this method when certain keys are pressed. For example,
- * when the DEL key is pressed, performAction will be called with the "delete" string.
- */
- /* void performAction (in wstring action); */
- NS_IMETHOD PerformAction(const PRUnichar *action) = 0;
-
- /**
- * A command API that can be used to invoke commands on a specific row.
- */
- /* void performActionOnRow (in wstring action, in long row); */
- NS_IMETHOD PerformActionOnRow(const PRUnichar *action, PRInt32 row) = 0;
-
- /**
- * A command API that can be used to invoke commands on a specific cell.
- */
- /* void performActionOnCell (in wstring action, in long row, in nsITreeColumn col); */
- NS_IMETHOD PerformActionOnCell(const PRUnichar *action, PRInt32 row, nsITreeColumn *col) = 0;
-
- };
-
- /* Use this macro when declaring classes that implement this interface. */
- #define NS_DECL_NSITREEVIEW \
- NS_IMETHOD GetRowCount(PRInt32 *aRowCount); \
- NS_IMETHOD GetSelection(nsITreeSelection * *aSelection); \
- NS_IMETHOD SetSelection(nsITreeSelection * aSelection); \
- NS_IMETHOD GetRowProperties(PRInt32 index, nsISupportsArray *properties); \
- NS_IMETHOD GetCellProperties(PRInt32 row, nsITreeColumn *col, nsISupportsArray *properties); \
- NS_IMETHOD GetColumnProperties(nsITreeColumn *col, nsISupportsArray *properties); \
- NS_IMETHOD IsContainer(PRInt32 index, PRBool *_retval); \
- NS_IMETHOD IsContainerOpen(PRInt32 index, PRBool *_retval); \
- NS_IMETHOD IsContainerEmpty(PRInt32 index, PRBool *_retval); \
- NS_IMETHOD IsSeparator(PRInt32 index, PRBool *_retval); \
- NS_IMETHOD IsSorted(PRBool *_retval); \
- NS_IMETHOD CanDrop(PRInt32 index, PRInt32 orientation, PRBool *_retval); \
- NS_IMETHOD Drop(PRInt32 row, PRInt32 orientation); \
- NS_IMETHOD GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval); \
- NS_IMETHOD HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval); \
- NS_IMETHOD GetLevel(PRInt32 index, PRInt32 *_retval); \
- NS_IMETHOD GetImageSrc(PRInt32 row, nsITreeColumn *col, nsAString & _retval); \
- NS_IMETHOD GetProgressMode(PRInt32 row, nsITreeColumn *col, PRInt32 *_retval); \
- NS_IMETHOD GetCellValue(PRInt32 row, nsITreeColumn *col, nsAString & _retval); \
- NS_IMETHOD GetCellText(PRInt32 row, nsITreeColumn *col, nsAString & _retval); \
- NS_IMETHOD SetTree(nsITreeBoxObject *tree); \
- NS_IMETHOD ToggleOpenState(PRInt32 index); \
- NS_IMETHOD CycleHeader(nsITreeColumn *col); \
- NS_IMETHOD SelectionChanged(void); \
- NS_IMETHOD CycleCell(PRInt32 row, nsITreeColumn *col); \
- NS_IMETHOD IsEditable(PRInt32 row, nsITreeColumn *col, PRBool *_retval); \
- NS_IMETHOD SetCellValue(PRInt32 row, nsITreeColumn *col, const nsAString & value); \
- NS_IMETHOD SetCellText(PRInt32 row, nsITreeColumn *col, const nsAString & value); \
- NS_IMETHOD PerformAction(const PRUnichar *action); \
- NS_IMETHOD PerformActionOnRow(const PRUnichar *action, PRInt32 row); \
- NS_IMETHOD PerformActionOnCell(const PRUnichar *action, PRInt32 row, nsITreeColumn *col);
-
- /* Use this macro to declare functions that forward the behavior of this interface to another object. */
- #define NS_FORWARD_NSITREEVIEW(_to) \
- NS_IMETHOD GetRowCount(PRInt32 *aRowCount) { return _to GetRowCount(aRowCount); } \
- NS_IMETHOD GetSelection(nsITreeSelection * *aSelection) { return _to GetSelection(aSelection); } \
- NS_IMETHOD SetSelection(nsITreeSelection * aSelection) { return _to SetSelection(aSelection); } \
- NS_IMETHOD GetRowProperties(PRInt32 index, nsISupportsArray *properties) { return _to GetRowProperties(index, properties); } \
- NS_IMETHOD GetCellProperties(PRInt32 row, nsITreeColumn *col, nsISupportsArray *properties) { return _to GetCellProperties(row, col, properties); } \
- NS_IMETHOD GetColumnProperties(nsITreeColumn *col, nsISupportsArray *properties) { return _to GetColumnProperties(col, properties); } \
- NS_IMETHOD IsContainer(PRInt32 index, PRBool *_retval) { return _to IsContainer(index, _retval); } \
- NS_IMETHOD IsContainerOpen(PRInt32 index, PRBool *_retval) { return _to IsContainerOpen(index, _retval); } \
- NS_IMETHOD IsContainerEmpty(PRInt32 index, PRBool *_retval) { return _to IsContainerEmpty(index, _retval); } \
- NS_IMETHOD IsSeparator(PRInt32 index, PRBool *_retval) { return _to IsSeparator(index, _retval); } \
- NS_IMETHOD IsSorted(PRBool *_retval) { return _to IsSorted(_retval); } \
- NS_IMETHOD CanDrop(PRInt32 index, PRInt32 orientation, PRBool *_retval) { return _to CanDrop(index, orientation, _retval); } \
- NS_IMETHOD Drop(PRInt32 row, PRInt32 orientation) { return _to Drop(row, orientation); } \
- NS_IMETHOD GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval) { return _to GetParentIndex(rowIndex, _retval); } \
- NS_IMETHOD HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval) { return _to HasNextSibling(rowIndex, afterIndex, _retval); } \
- NS_IMETHOD GetLevel(PRInt32 index, PRInt32 *_retval) { return _to GetLevel(index, _retval); } \
- NS_IMETHOD GetImageSrc(PRInt32 row, nsITreeColumn *col, nsAString & _retval) { return _to GetImageSrc(row, col, _retval); } \
- NS_IMETHOD GetProgressMode(PRInt32 row, nsITreeColumn *col, PRInt32 *_retval) { return _to GetProgressMode(row, col, _retval); } \
- NS_IMETHOD GetCellValue(PRInt32 row, nsITreeColumn *col, nsAString & _retval) { return _to GetCellValue(row, col, _retval); } \
- NS_IMETHOD GetCellText(PRInt32 row, nsITreeColumn *col, nsAString & _retval) { return _to GetCellText(row, col, _retval); } \
- NS_IMETHOD SetTree(nsITreeBoxObject *tree) { return _to SetTree(tree); } \
- NS_IMETHOD ToggleOpenState(PRInt32 index) { return _to ToggleOpenState(index); } \
- NS_IMETHOD CycleHeader(nsITreeColumn *col) { return _to CycleHeader(col); } \
- NS_IMETHOD SelectionChanged(void) { return _to SelectionChanged(); } \
- NS_IMETHOD CycleCell(PRInt32 row, nsITreeColumn *col) { return _to CycleCell(row, col); } \
- NS_IMETHOD IsEditable(PRInt32 row, nsITreeColumn *col, PRBool *_retval) { return _to IsEditable(row, col, _retval); } \
- NS_IMETHOD SetCellValue(PRInt32 row, nsITreeColumn *col, const nsAString & value) { return _to SetCellValue(row, col, value); } \
- NS_IMETHOD SetCellText(PRInt32 row, nsITreeColumn *col, const nsAString & value) { return _to SetCellText(row, col, value); } \
- NS_IMETHOD PerformAction(const PRUnichar *action) { return _to PerformAction(action); } \
- NS_IMETHOD PerformActionOnRow(const PRUnichar *action, PRInt32 row) { return _to PerformActionOnRow(action, row); } \
- NS_IMETHOD PerformActionOnCell(const PRUnichar *action, PRInt32 row, nsITreeColumn *col) { return _to PerformActionOnCell(action, row, col); }
-
- /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
- #define NS_FORWARD_SAFE_NSITREEVIEW(_to) \
- NS_IMETHOD GetRowCount(PRInt32 *aRowCount) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRowCount(aRowCount); } \
- NS_IMETHOD GetSelection(nsITreeSelection * *aSelection) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelection(aSelection); } \
- NS_IMETHOD SetSelection(nsITreeSelection * aSelection) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelection(aSelection); } \
- NS_IMETHOD GetRowProperties(PRInt32 index, nsISupportsArray *properties) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRowProperties(index, properties); } \
- NS_IMETHOD GetCellProperties(PRInt32 row, nsITreeColumn *col, nsISupportsArray *properties) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCellProperties(row, col, properties); } \
- NS_IMETHOD GetColumnProperties(nsITreeColumn *col, nsISupportsArray *properties) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColumnProperties(col, properties); } \
- NS_IMETHOD IsContainer(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsContainer(index, _retval); } \
- NS_IMETHOD IsContainerOpen(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsContainerOpen(index, _retval); } \
- NS_IMETHOD IsContainerEmpty(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsContainerEmpty(index, _retval); } \
- NS_IMETHOD IsSeparator(PRInt32 index, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsSeparator(index, _retval); } \
- NS_IMETHOD IsSorted(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsSorted(_retval); } \
- NS_IMETHOD CanDrop(PRInt32 index, PRInt32 orientation, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CanDrop(index, orientation, _retval); } \
- NS_IMETHOD Drop(PRInt32 row, PRInt32 orientation) { return !_to ? NS_ERROR_NULL_POINTER : _to->Drop(row, orientation); } \
- NS_IMETHOD GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetParentIndex(rowIndex, _retval); } \
- NS_IMETHOD HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->HasNextSibling(rowIndex, afterIndex, _retval); } \
- NS_IMETHOD GetLevel(PRInt32 index, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLevel(index, _retval); } \
- NS_IMETHOD GetImageSrc(PRInt32 row, nsITreeColumn *col, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetImageSrc(row, col, _retval); } \
- NS_IMETHOD GetProgressMode(PRInt32 row, nsITreeColumn *col, PRInt32 *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProgressMode(row, col, _retval); } \
- NS_IMETHOD GetCellValue(PRInt32 row, nsITreeColumn *col, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCellValue(row, col, _retval); } \
- NS_IMETHOD GetCellText(PRInt32 row, nsITreeColumn *col, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCellText(row, col, _retval); } \
- NS_IMETHOD SetTree(nsITreeBoxObject *tree) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetTree(tree); } \
- NS_IMETHOD ToggleOpenState(PRInt32 index) { return !_to ? NS_ERROR_NULL_POINTER : _to->ToggleOpenState(index); } \
- NS_IMETHOD CycleHeader(nsITreeColumn *col) { return !_to ? NS_ERROR_NULL_POINTER : _to->CycleHeader(col); } \
- NS_IMETHOD SelectionChanged(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->SelectionChanged(); } \
- NS_IMETHOD CycleCell(PRInt32 row, nsITreeColumn *col) { return !_to ? NS_ERROR_NULL_POINTER : _to->CycleCell(row, col); } \
- NS_IMETHOD IsEditable(PRInt32 row, nsITreeColumn *col, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsEditable(row, col, _retval); } \
- NS_IMETHOD SetCellValue(PRInt32 row, nsITreeColumn *col, const nsAString & value) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCellValue(row, col, value); } \
- NS_IMETHOD SetCellText(PRInt32 row, nsITreeColumn *col, const nsAString & value) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCellText(row, col, value); } \
- NS_IMETHOD PerformAction(const PRUnichar *action) { return !_to ? NS_ERROR_NULL_POINTER : _to->PerformAction(action); } \
- NS_IMETHOD PerformActionOnRow(const PRUnichar *action, PRInt32 row) { return !_to ? NS_ERROR_NULL_POINTER : _to->PerformActionOnRow(action, row); } \
- NS_IMETHOD PerformActionOnCell(const PRUnichar *action, PRInt32 row, nsITreeColumn *col) { return !_to ? NS_ERROR_NULL_POINTER : _to->PerformActionOnCell(action, row, col); }
-
- #if 0
- /* Use the code below as a template for the implementation class for this interface. */
-
- /* Header file */
- class nsTreeView : public nsITreeView
- {
- public:
- NS_DECL_ISUPPORTS
- NS_DECL_NSITREEVIEW
-
- nsTreeView();
-
- private:
- ~nsTreeView();
-
- protected:
- /* additional members */
- };
-
- /* Implementation file */
- NS_IMPL_ISUPPORTS1(nsTreeView, nsITreeView)
-
- nsTreeView::nsTreeView()
- {
- /* member initializers and constructor code */
- }
-
- nsTreeView::~nsTreeView()
- {
- /* destructor code */
- }
-
- /* readonly attribute long rowCount; */
- NS_IMETHODIMP nsTreeView::GetRowCount(PRInt32 *aRowCount)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* attribute nsITreeSelection selection; */
- NS_IMETHODIMP nsTreeView::GetSelection(nsITreeSelection * *aSelection)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
- NS_IMETHODIMP nsTreeView::SetSelection(nsITreeSelection * aSelection)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void getRowProperties (in long index, in nsISupportsArray properties); */
- NS_IMETHODIMP nsTreeView::GetRowProperties(PRInt32 index, nsISupportsArray *properties)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void getCellProperties (in long row, in nsITreeColumn col, in nsISupportsArray properties); */
- NS_IMETHODIMP nsTreeView::GetCellProperties(PRInt32 row, nsITreeColumn *col, nsISupportsArray *properties)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void getColumnProperties (in nsITreeColumn col, in nsISupportsArray properties); */
- NS_IMETHODIMP nsTreeView::GetColumnProperties(nsITreeColumn *col, nsISupportsArray *properties)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean isContainer (in long index); */
- NS_IMETHODIMP nsTreeView::IsContainer(PRInt32 index, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean isContainerOpen (in long index); */
- NS_IMETHODIMP nsTreeView::IsContainerOpen(PRInt32 index, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean isContainerEmpty (in long index); */
- NS_IMETHODIMP nsTreeView::IsContainerEmpty(PRInt32 index, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean isSeparator (in long index); */
- NS_IMETHODIMP nsTreeView::IsSeparator(PRInt32 index, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean isSorted (); */
- NS_IMETHODIMP nsTreeView::IsSorted(PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean canDrop (in long index, in long orientation); */
- NS_IMETHODIMP nsTreeView::CanDrop(PRInt32 index, PRInt32 orientation, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void drop (in long row, in long orientation); */
- NS_IMETHODIMP nsTreeView::Drop(PRInt32 row, PRInt32 orientation)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* long getParentIndex (in long rowIndex); */
- NS_IMETHODIMP nsTreeView::GetParentIndex(PRInt32 rowIndex, PRInt32 *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean hasNextSibling (in long rowIndex, in long afterIndex); */
- NS_IMETHODIMP nsTreeView::HasNextSibling(PRInt32 rowIndex, PRInt32 afterIndex, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* long getLevel (in long index); */
- NS_IMETHODIMP nsTreeView::GetLevel(PRInt32 index, PRInt32 *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* AString getImageSrc (in long row, in nsITreeColumn col); */
- NS_IMETHODIMP nsTreeView::GetImageSrc(PRInt32 row, nsITreeColumn *col, nsAString & _retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* long getProgressMode (in long row, in nsITreeColumn col); */
- NS_IMETHODIMP nsTreeView::GetProgressMode(PRInt32 row, nsITreeColumn *col, PRInt32 *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* AString getCellValue (in long row, in nsITreeColumn col); */
- NS_IMETHODIMP nsTreeView::GetCellValue(PRInt32 row, nsITreeColumn *col, nsAString & _retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* AString getCellText (in long row, in nsITreeColumn col); */
- NS_IMETHODIMP nsTreeView::GetCellText(PRInt32 row, nsITreeColumn *col, nsAString & _retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void setTree (in nsITreeBoxObject tree); */
- NS_IMETHODIMP nsTreeView::SetTree(nsITreeBoxObject *tree)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void toggleOpenState (in long index); */
- NS_IMETHODIMP nsTreeView::ToggleOpenState(PRInt32 index)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void cycleHeader (in nsITreeColumn col); */
- NS_IMETHODIMP nsTreeView::CycleHeader(nsITreeColumn *col)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void selectionChanged (); */
- NS_IMETHODIMP nsTreeView::SelectionChanged()
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void cycleCell (in long row, in nsITreeColumn col); */
- NS_IMETHODIMP nsTreeView::CycleCell(PRInt32 row, nsITreeColumn *col)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* boolean isEditable (in long row, in nsITreeColumn col); */
- NS_IMETHODIMP nsTreeView::IsEditable(PRInt32 row, nsITreeColumn *col, PRBool *_retval)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void setCellValue (in long row, in nsITreeColumn col, in AString value); */
- NS_IMETHODIMP nsTreeView::SetCellValue(PRInt32 row, nsITreeColumn *col, const nsAString & value)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void setCellText (in long row, in nsITreeColumn col, in AString value); */
- NS_IMETHODIMP nsTreeView::SetCellText(PRInt32 row, nsITreeColumn *col, const nsAString & value)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void performAction (in wstring action); */
- NS_IMETHODIMP nsTreeView::PerformAction(const PRUnichar *action)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void performActionOnRow (in wstring action, in long row); */
- NS_IMETHODIMP nsTreeView::PerformActionOnRow(const PRUnichar *action, PRInt32 row)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* void performActionOnCell (in wstring action, in long row, in nsITreeColumn col); */
- NS_IMETHODIMP nsTreeView::PerformActionOnCell(const PRUnichar *action, PRInt32 row, nsITreeColumn *col)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* End of implementation class template. */
- #endif
-
-
- #endif /* __gen_nsITreeView_h__ */
-